0f11f23328845854f60cc9c4cf2f6b5906d2ed5c,src/java/org/orbeon/oxf/processor/pipeline/PipelineReader.java,PipelineReader,readHref,#Node#String#,224
Before Change
HrefResult result = readHrefWorker(locationData, href);
// Make sure that everything was consumed
PatternMatcher matcher = new Perl5Matcher();
if (! matcher.contains(result.rest, END))
throw new ValidationException("Can't parse \"" + result.rest + "\" in href", locationData);
return result.astHref;
}
After Change
HrefResult result = readHrefWorker(locationData, href);
// Make sure that everything was consumed
if (! END.matcher(result.rest).find())
throw new ValidationException("Can't parse \"" + result.rest + "\" in href", locationData);
return result.astHref;
}